home *** CD-ROM | disk | FTP | other *** search
/ isnet Internet / Isnet Internet CD.iso / prog / html / 12 / _SETUP.1 / Fox.exe / 0 / RCDATA / TFORMPRINT / TFORMPRINT.txt
Encoding:
Text File  |  1997-12-06  |  2.6 KB  |  122 lines

  1. object FormPrint: TFormPrint
  2.   Left = 169
  3.   Top = 169
  4.   BorderIcons = []
  5.   BorderStyle = bsDialog
  6.   Caption = 'Select Print Options'
  7.   ClientHeight = 176
  8.   ClientWidth = 261
  9.   Font.Color = clWindowText
  10.   Font.Height = -11
  11.   Font.Name = 'MS Sans Serif'
  12.   Font.Style = []
  13.   Position = poScreenCenter
  14.   OnHide = FormHide
  15.   OnShow = FormShow
  16.   PixelsPerInch = 96
  17.   TextHeight = 13
  18.   object ButtonPrint: TButton
  19.     Left = 8
  20.     Top = 144
  21.     Width = 77
  22.     Height = 25
  23.     Hint = 'Send to printer, using the currently selected print options'
  24.     Caption = '&Print'
  25.     ParentShowHint = False
  26.     ShowHint = True
  27.     TabOrder = 0
  28.     OnClick = ButtonPrintClick
  29.   end
  30.   object ButtonCancel: TButton
  31.     Left = 92
  32.     Top = 144
  33.     Width = 77
  34.     Height = 25
  35.     Cancel = True
  36.     Caption = '&Cancel'
  37.     ParentShowHint = False
  38.     ShowHint = False
  39.     TabOrder = 1
  40.     OnClick = ButtonCancelClick
  41.   end
  42.   object ButtonHelp: TButton
  43.     Left = 176
  44.     Top = 144
  45.     Width = 77
  46.     Height = 25
  47.     Caption = '&Help'
  48.     ParentShowHint = False
  49.     ShowHint = False
  50.     TabOrder = 2
  51.     OnClick = ButtonHelpClick
  52.   end
  53.   object GroupBoxPrint: TGroupBox
  54.     Left = 8
  55.     Top = 8
  56.     Width = 245
  57.     Height = 129
  58.     Hint = 'Print options'
  59.     Caption = 'Print'
  60.     ParentShowHint = False
  61.     ShowHint = True
  62.     TabOrder = 3
  63.     object RadioGroupPages: TRadioGroup
  64.       Left = 12
  65.       Top = 16
  66.       Width = 221
  67.       Height = 101
  68.       Hint = 'Which pages to print'
  69.       Caption = 'Pages'
  70.       ItemIndex = 0
  71.       Items.Strings = (
  72.         'All'
  73.         'Current page only'
  74.         'From')
  75.       TabOrder = 0
  76.       TabStop = True
  77.       OnClick = RadioGroupPagesClick
  78.     end
  79.     object PanelTo: TPanel
  80.       Left = 68
  81.       Top = 84
  82.       Width = 161
  83.       Height = 29
  84.       BevelOuter = bvNone
  85.       Caption = 'to'
  86.       TabOrder = 1
  87.       object SpinEditPrintPagesFrom: TSpinEdit
  88.         Left = 4
  89.         Top = 3
  90.         Width = 65
  91.         Height = 22
  92.         Hint = 'Print from page'
  93.         AutoSelect = False
  94.         MaxValue = 1
  95.         MinValue = 1
  96.         ParentShowHint = False
  97.         ShowHint = True
  98.         TabOrder = 0
  99.         Value = 0
  100.         OnChange = SpinEditPrintPagesFromChange
  101.         OnExit = SpinEditPrintPagesFromExit
  102.       end
  103.       object SpinEditPrintPagesTo: TSpinEdit
  104.         Left = 92
  105.         Top = 3
  106.         Width = 65
  107.         Height = 22
  108.         Hint = 'Print to page'
  109.         AutoSelect = False
  110.         MaxValue = 1
  111.         MinValue = 1
  112.         ParentShowHint = False
  113.         ShowHint = True
  114.         TabOrder = 1
  115.         Value = 0
  116.         OnChange = SpinEditPrintPagesToChange
  117.         OnExit = SpinEditPrintPagesToExit
  118.       end
  119.     end
  120.   end
  121. end
  122.